Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the all-dependencies group in /api with 7 updates #281

Merged
merged 1 commit into from
Oct 9, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 9, 2023

Bumps the all-dependencies group in /api with 7 updates:

Package From To
urllib3 1.26.17 2.0.6
annotated-types 0.5.0 0.6.0
blinker 1.6.2 1.6.3
boto3 1.28.57 1.28.62
botocore 1.31.57 1.31.62
greenlet 2.0.2 3.0.0
psycopg2-binary 2.9.8 2.9.9

Updates urllib3 from 1.26.17 to 2.0.6

Release notes

Sourced from urllib3's releases.

2.0.6

  • Added the Cookie header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect. (GHSA-v845-jxx5-vc9f)

2.0.5

  • Allowed pyOpenSSL third-party module without any deprecation warning. #3126
  • Fixed default blocksize of HTTPConnection classes to match high-level classes. Previously was 8KiB, now 16KiB. #3066

2.0.4

  • Added support for union operators to HTTPHeaderDict (#2254)
  • Added BaseHTTPResponse to urllib3.__all__ (#3078)
  • Fixed urllib3.connection.HTTPConnection to raise the http.client.connect audit event to have the same behavior as the standard library HTTP client (#2757)
  • Relied on the standard library for checking hostnames in supported PyPy releases (#3087)

2.0.3

  • Allowed alternative SSL libraries such as LibreSSL, while still issuing a warning as we cannot help users facing issues with implementations other than OpenSSL. #3020
  • Deprecated URLs which don't have an explicit scheme #2950
  • Fixed response decoding with Zstandard when compressed data is made of several frames. #3008
  • Fixed assert_hostname=False to correctly skip hostname check. #3051

2.0.2

  • Fixed HTTPResponse.stream() to continue yielding bytes if buffered decompressed data was still available to be read even if the underlying socket is closed. This prevents a compressed response from being truncated. (urllib3/urllib3#3009)

2.0.1

  • Fixed a socket leak when fingerprint or hostname verifications fail. (#2991)
  • Fixed an error when HTTPResponse.read(0) was the first read call or when the internal response body buffer was otherwise empty. (#2998)

2.0.0

Read the v2.0 migration guide for help upgrading to the latest version of urllib3.

Removed

  • Removed support for Python 2.7, 3.5, and 3.6 (#883, #2336).
  • Removed fallback on certificate commonName in match_hostname() function. This behavior was deprecated in May 2000 in RFC 2818. Instead only subjectAltName is used to verify the hostname by default. To enable verifying the hostname against commonName use SSLContext.hostname_checks_common_name = True (#2113).
  • Removed support for Python with an ssl module compiled with LibreSSL, CiscoSSL, wolfSSL, and all other OpenSSL alternatives. Python is moving to require OpenSSL with PEP 644 (#2168).
  • Removed support for OpenSSL versions earlier than 1.1.1 or that don't have SNI support. When an incompatible OpenSSL version is detected an ImportError is raised (#2168).
  • Removed the list of default ciphers for OpenSSL 1.1.1+ and SecureTransport as their own defaults are already secure (#2082).
  • Removed urllib3.contrib.appengine.AppEngineManager and support for Google App Engine Standard Environment (#2044).
  • Removed deprecated Retry options method_whitelist, DEFAULT_REDIRECT_HEADERS_BLACKLIST (#2086).
  • Removed urllib3.HTTPResponse.from_httplib (#2648).
  • Removed default value of None for the request_context parameter of urllib3.PoolManager.connection_from_pool_key. This change should have no effect on users as the default value of None was an invalid option and was never used (#1897).
  • Removed the urllib3.request module. urllib3.request.RequestMethods has been made a private API. This change was made to ensure that from urllib3 import request imported the top-level request() function instead of the urllib3.request module (#2269).
  • Removed support for SSLv3.0 from the urllib3.contrib.pyopenssl even when support is available from the compiled OpenSSL library (#2233).
  • Removed the deprecated urllib3.contrib.ntlmpool module (#2339).
  • Removed DEFAULT_CIPHERS, HAS_SNI, USE_DEFAULT_SSLCONTEXT_CIPHERS, from the private module urllib3.util.ssl_ (#2168).
  • Removed urllib3.exceptions.SNIMissingWarning (#2168).
  • Removed the _prepare_conn method from HTTPConnectionPool. Previously this was only used to call HTTPSConnection.set_cert() by HTTPSConnectionPool (#1985).
  • Removed tls_in_tls_required property from HTTPSConnection. This is now determined from the scheme parameter in HTTPConnection.set_tunnel() (#1985).

Deprecated

... (truncated)

Changelog

Sourced from urllib3's changelog.

2.0.6 (2023-10-02)

  • Added the Cookie header to the list of headers to strip from requests when redirecting to a different host. As before, different headers can be set via Retry.remove_headers_on_redirect.

2.0.5 (2023-09-20)

  • Allowed pyOpenSSL third-party module without any deprecation warning. ([#3126](https://github.com/urllib3/urllib3/issues/3126) <https://github.com/urllib3/urllib3/issues/3126>__)
  • Fixed default blocksize of HTTPConnection classes to match high-level classes. Previously was 8KiB, now 16KiB. ([#3066](https://github.com/urllib3/urllib3/issues/3066) <https://github.com/urllib3/urllib3/issues/3066>__)

2.0.4 (2023-07-19)

  • Added support for union operators to HTTPHeaderDict ([#2254](https://github.com/urllib3/urllib3/issues/2254) <https://github.com/urllib3/urllib3/issues/2254>__)
  • Added BaseHTTPResponse to urllib3.__all__ ([#3078](https://github.com/urllib3/urllib3/issues/3078) <https://github.com/urllib3/urllib3/issues/3078>__)
  • Fixed urllib3.connection.HTTPConnection to raise the http.client.connect audit event to have the same behavior as the standard library HTTP client ([#2757](https://github.com/urllib3/urllib3/issues/2757) <https://github.com/urllib3/urllib3/issues/2757>__)
  • Relied on the standard library for checking hostnames in supported PyPy releases ([#3087](https://github.com/urllib3/urllib3/issues/3087) <https://github.com/urllib3/urllib3/issues/3087>__)

2.0.3 (2023-06-07)

  • Allowed alternative SSL libraries such as LibreSSL, while still issuing a warning as we cannot help users facing issues with implementations other than OpenSSL. ([#3020](https://github.com/urllib3/urllib3/issues/3020) <https://github.com/urllib3/urllib3/issues/3020>__)
  • Deprecated URLs which don't have an explicit scheme ([#2950](https://github.com/urllib3/urllib3/issues/2950) <https://github.com/urllib3/urllib3/pull/2950>_)
  • Fixed response decoding with Zstandard when compressed data is made of several frames. ([#3008](https://github.com/urllib3/urllib3/issues/3008) <https://github.com/urllib3/urllib3/issues/3008>__)
  • Fixed assert_hostname=False to correctly skip hostname check. ([#3051](https://github.com/urllib3/urllib3/issues/3051) <https://github.com/urllib3/urllib3/issues/3051>__)

2.0.2 (2023-05-03)

  • Fixed HTTPResponse.stream() to continue yielding bytes if buffered decompressed data was still available to be read even if the underlying socket is closed. This prevents a compressed response from being truncated. ([#3009](https://github.com/urllib3/urllib3/issues/3009) <https://github.com/urllib3/urllib3/issues/3009>__)

2.0.1 (2023-04-30)

  • Fixed a socket leak when fingerprint or hostname verifications fail. ([#2991](https://github.com/urllib3/urllib3/issues/2991) <https://github.com/urllib3/urllib3/issues/2991>__)
  • Fixed an error when HTTPResponse.read(0) was the first read call or when the internal response body buffer was otherwise empty. ([#2998](https://github.com/urllib3/urllib3/issues/2998) <https://github.com/urllib3/urllib3/issues/2998>__)

2.0.0 (2023-04-26)

Read the v2.0 migration guide <https://urllib3.readthedocs.io/en/latest/v2-migration-guide.html>__ for help upgrading to the latest version of urllib3.

... (truncated)

Commits

Updates annotated-types from 0.5.0 to 0.6.0

Release notes

Sourced from annotated-types's releases.

v0.6.0

What's Changed

New Contributors

Full Changelog: annotated-types/annotated-types@v0.5.0...v0.6.0

Commits

Updates blinker from 1.6.2 to 1.6.3

Release notes

Sourced from blinker's releases.

1.6.3

release version 1.6.3

Changelog

Sourced from blinker's changelog.

Version 1.6.3

Released 2023-09-23

  • Fix SyncWrapperType and AsyncWrapperType :pr:108
  • Fixed issue where signal.connected_to would not disconnect the receiver if an instance of BaseException was raised. :pr:114
Commits
  • 3e53456 Fix deployment issue and re-release 1.6.3
  • b2eee54 Relase version 1.6.3
  • 6a48bad Add changelog entry
  • 00e3d22 Signal.connected_to should always disconnect the receiver
  • e7a10d9 Merge pull request #113 from pallets-eco/dependabot/github_actions/slsa-frame...
  • 55f8a15 Merge pull request #112 from pallets-eco/dependabot/github_actions/actions/ch...
  • 56330e8 Merge pull request #111 from pallets-eco/dependabot/github_actions/pypa/gh-ac...
  • 21ba976 Bump slsa-framework/slsa-github-generator from 1.7.0 to 1.9.0
  • 80d09f8 Bump actions/checkout from 3.5.3 to 3.6.0
  • c305b18 Bump pypa/gh-action-pypi-publish from 1.8.8 to 1.8.10
  • Additional commits viewable in compare view

Updates boto3 from 1.28.57 to 1.28.62

Changelog

Sourced from boto3's changelog.

1.28.62

  • enhancement:Dependencies: [botocore] Add support for urllib3 2.0 for Python 3.10+
  • api-change:ec2: [botocore] Documentation updates for Elastic Compute Cloud (EC2).
  • api-change:fsx: [botocore] After performing steps to repair the Active Directory configuration of a file system, use this action to initiate the process of attempting to recover to the file system.
  • api-change:marketplace-catalog: [botocore] This release adds support for Document type as an alternative for stringified JSON for StartChangeSet, DescribeChangeSet and DescribeEntity APIs
  • api-change:quicksight: [botocore] NullOption in FilterListConfiguration; Dataset schema/table max length increased; Support total placement for pivot table visual; Lenient mode relaxes the validation to create resources with definition; Data sources can be added to folders; Redshift data sources support IAM Role-based authentication
  • api-change:transfer: [botocore] This release updates the max character limit of PreAuthenticationLoginBanner and PostAuthenticationLoginBanner to 4096 characters

1.28.61

  • api-change:omics: [botocore] Add Etag Support for Omics Storage in ListReadSets and GetReadSetMetadata API
  • api-change:rds: [botocore] Updates Amazon RDS documentation for corrections and minor improvements.
  • api-change:route53: [botocore] Add hostedzonetype filter to ListHostedZones API.
  • api-change:securityhub: [botocore] Added new resource detail objects to ASFF, including resources for AwsEventsEventbus, AwsEventsEndpoint, AwsDmsEndpoint, AwsDmsReplicationTask, AwsDmsReplicationInstance, AwsRoute53HostedZone, and AwsMskCluster
  • api-change:storagegateway: [botocore] Add SoftwareVersion to response of DescribeGatewayInformation.
  • api-change:workspaces: [botocore] This release introduces Manage applications. This feature allows users to manage their WorkSpaces applications by associating or disassociating their WorkSpaces with applications. The DescribeWorkspaces API will now additionally return OperatingSystemName in its responses.

1.28.60

  • api-change:appconfig: [botocore] AWS AppConfig introduces KMS customer-managed key (CMK) encryption support for data saved to AppConfig's hosted configuration store.
  • api-change:datazone: [botocore] Initial release of Amazon DataZone
  • api-change:mediatailor: [botocore] Updates DescribeVodSource to include a list of ad break opportunities in the response
  • api-change:mgn: [botocore] This release includes the following new APIs: ListConnectors, CreateConnector, UpdateConnector, DeleteConnector and UpdateSourceServer to support the source action framework feature.
  • api-change:sagemaker: [botocore] Adding support for AdditionalS3DataSource, a data source used for training or inference that is in addition to the input dataset or model data.

1.28.59

  • api-change:connect: [botocore] GetMetricDataV2 API: Update to include new metrics CONTACTS_RESOLVED_IN_X , AVG_HOLD_TIME_ALL_CONTACTS , AVG_RESOLUTION_TIME , ABANDONMENT_RATE , AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS with added features: Interval Period, TimeZone, Negate MetricFilters, Extended date time range.
  • api-change:location: [botocore] Amazon Location Service adds support for bounding polygon queries. Additionally, the GeofenceCount field has been added to the DescribeGeofenceCollection API response.
  • api-change:mediaconvert: [botocore] This release adds the ability to replace video frames without modifying the audio essence.
  • api-change:oam: [botocore] This release adds support for sharing AWS::ApplicationInsights::Application resources.
  • api-change:sagemaker: [botocore] This release allows users to run Selective Execution in SageMaker Pipelines without SourcePipelineExecutionArn if selected steps do not have any dependent steps.
  • api-change:wellarchitected: [botocore] AWS Well-Architected now supports Review Templates that allows you to create templates with pre-filled answers for Well-Architected and Custom Lens best practices.

1.28.58

  • api-change:bedrock-runtime: [botocore] Add model timeout exception for InvokeModelWithResponseStream API and update validator for invoke model identifier.
  • api-change:bedrock: [botocore] Provisioned throughput feature with Amazon and third-party base models, and update validators for model identifier and taggable resource ARNs.
  • api-change:ec2: [botocore] Introducing Amazon EC2 R7iz instances with 3.9 GHz sustained all-core turbo frequency and deliver up to 20% better performance than previous generation z1d instances.
  • api-change:managedblockchain: [botocore] Remove Rinkeby as option from Ethereum APIs

... (truncated)

Commits
  • ca13c52 Merge branch 'release-1.28.62'
  • f3df111 Bumping version to 1.28.62
  • 4b4ed21 Add changelog entries from botocore
  • cbe9683 Merge branch 'release-1.28.61' into develop
  • 777acd6 Merge branch 'release-1.28.61'
  • a9c9688 Bumping version to 1.28.61
  • 760dc4d Add changelog entries from botocore
  • 21266fc Merge branch 'release-1.28.60' into develop
  • 6a91df5 Merge branch 'release-1.28.60'
  • 204e265 Bumping version to 1.28.60
  • Additional commits viewable in compare view

Updates botocore from 1.31.57 to 1.31.62

Changelog

Sourced from botocore's changelog.

1.31.62

  • enhancement:Dependencies: Add support for urllib3 2.0 for Python 3.10+
  • api-change:ec2: Documentation updates for Elastic Compute Cloud (EC2).
  • api-change:fsx: After performing steps to repair the Active Directory configuration of a file system, use this action to initiate the process of attempting to recover to the file system.
  • api-change:marketplace-catalog: This release adds support for Document type as an alternative for stringified JSON for StartChangeSet, DescribeChangeSet and DescribeEntity APIs
  • api-change:quicksight: NullOption in FilterListConfiguration; Dataset schema/table max length increased; Support total placement for pivot table visual; Lenient mode relaxes the validation to create resources with definition; Data sources can be added to folders; Redshift data sources support IAM Role-based authentication
  • api-change:transfer: This release updates the max character limit of PreAuthenticationLoginBanner and PostAuthenticationLoginBanner to 4096 characters

1.31.61

  • api-change:omics: Add Etag Support for Omics Storage in ListReadSets and GetReadSetMetadata API
  • api-change:rds: Updates Amazon RDS documentation for corrections and minor improvements.
  • api-change:route53: Add hostedzonetype filter to ListHostedZones API.
  • api-change:securityhub: Added new resource detail objects to ASFF, including resources for AwsEventsEventbus, AwsEventsEndpoint, AwsDmsEndpoint, AwsDmsReplicationTask, AwsDmsReplicationInstance, AwsRoute53HostedZone, and AwsMskCluster
  • api-change:storagegateway: Add SoftwareVersion to response of DescribeGatewayInformation.
  • api-change:workspaces: This release introduces Manage applications. This feature allows users to manage their WorkSpaces applications by associating or disassociating their WorkSpaces with applications. The DescribeWorkspaces API will now additionally return OperatingSystemName in its responses.

1.31.60

  • api-change:appconfig: AWS AppConfig introduces KMS customer-managed key (CMK) encryption support for data saved to AppConfig's hosted configuration store.
  • api-change:datazone: Initial release of Amazon DataZone
  • api-change:mediatailor: Updates DescribeVodSource to include a list of ad break opportunities in the response
  • api-change:mgn: This release includes the following new APIs: ListConnectors, CreateConnector, UpdateConnector, DeleteConnector and UpdateSourceServer to support the source action framework feature.
  • api-change:sagemaker: Adding support for AdditionalS3DataSource, a data source used for training or inference that is in addition to the input dataset or model data.

1.31.59

  • api-change:connect: GetMetricDataV2 API: Update to include new metrics CONTACTS_RESOLVED_IN_X , AVG_HOLD_TIME_ALL_CONTACTS , AVG_RESOLUTION_TIME , ABANDONMENT_RATE , AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS with added features: Interval Period, TimeZone, Negate MetricFilters, Extended date time range.
  • api-change:location: Amazon Location Service adds support for bounding polygon queries. Additionally, the GeofenceCount field has been added to the DescribeGeofenceCollection API response.
  • api-change:mediaconvert: This release adds the ability to replace video frames without modifying the audio essence.
  • api-change:oam: This release adds support for sharing AWS::ApplicationInsights::Application resources.
  • api-change:sagemaker: This release allows users to run Selective Execution in SageMaker Pipelines without SourcePipelineExecutionArn if selected steps do not have any dependent steps.
  • api-change:wellarchitected: AWS Well-Architected now supports Review Templates that allows you to create templates with pre-filled answers for Well-Architected and Custom Lens best practices.

1.31.58

  • api-change:bedrock: Provisioned throughput feature with Amazon and third-party base models, and update validators for model identifier and taggable resource ARNs.
  • api-change:bedrock-runtime: Add model timeout exception for InvokeModelWithResponseStream API and update validator for invoke model identifier.
  • api-change:ec2: Introducing Amazon EC2 R7iz instances with 3.9 GHz sustained all-core turbo frequency and deliver up to 20% better performance than previous generation z1d instances.
  • api-change:managedblockchain: Remove Rinkeby as option from Ethereum APIs

... (truncated)

Commits
  • 3cebc0c Merge branch 'release-1.31.62'
  • 3246f76 Bumping version to 1.31.62
  • 1aa14a9 Update to latest models
  • 8987291 Merge pull request #3034 from nateprewitt/urllib3-2.0-3.10
  • 1e2a789 Add changelog
  • 785d224 Add support for urllib3 2.0 in Python 3.10+
  • 790a48f Merge branch 'release-1.31.61'
  • f6cc297 Merge branch 'release-1.31.61' into develop
  • 87d33c4 Bumping version to 1.31.61
  • 87fd260 Update to latest partitions and endpoints
  • Additional commits viewable in compare view

Updates greenlet from 2.0.2 to 3.0.0

Changelog

Sourced from greenlet's changelog.

3.0.0 (2023-10-02)

  • No changes from 3.0rc3 aside from the version number.

3.0.0rc3 (2023-09-12)

  • Fix an intermittent error during process termination on some platforms (GCC/Linux/libstdc++).

3.0.0rc2 (2023-09-09)

  • Fix some potential bugs (assertion failures and memory leaks) in previously-untested error handling code. In some cases, this means that the process will execute a controlled abort() after severe trouble when previously the process might have continued for some time with a corrupt state. It is unlikely those errors occurred in practice.
  • Fix some assertion errors and potential bugs with re-entrant switches.
  • Fix a potential crash when certain compilers compile greenlet with high levels of optimization. The symptom would be that switching to a greenlet for the first time immediately crashes.
  • Fix a potential crash when the callable object passed to the greenlet constructor (or set as the greenlet.run attribute) has a destructor attached to it that switches. Typically, triggering this issue would require an unlikely subclass of greenlet.greenlet.
  • Python 3.11+: Fix rare switching errors that could occur when a garbage collection was triggered during the middle of a switch, and Python-level code in __del__ or weakref callbacks switched to a different greenlet and ultimately switched back to the original greenlet. This often manifested as a SystemError: "switch returned NULL without an exception set."

For context on the fixes, see gevent issue [#1985](https://github.com/python-greenlet/greenlet/issues/1985) <https://github.com/gevent/gevent/issues/1985>_.

3.0.0rc1 (2023-09-01)

  • Windows wheels are linked statically to the C runtime in an effort to prevent import errors on systems without the correct C runtime installed. It's not clear if this will make the situation better or worse, so please share your experiences in issue 346 <https://github.com/python-greenlet/greenlet/issues/346>_.

... (truncated)

Commits
  • ef510e4 Preparing release 3.0.0
  • 8b24b4d Updating change log.
  • 79f6351 Back to development: 3.0.0rc4
  • 715128a Preparing release 3.0.0rc3
  • f2ecf0c D'oh, tstate is used under Py 3.11+. UNUSED breaks compilation on windows.
  • 7451810 Finish refactoring to separate files.
  • 748a9e0 Fix an intermittent error during process termination on GCC/Linux/libstdc++.
  • cec93b1 Move BrokenGreenlet to its own file.
  • 0b108b3 Move UserGreenlet code to its own file.
  • 215d0c9 Moving Greenlet, module globals and thread state destruction to their own files.
  • Additional commits viewable in compare view

Updates psycopg2-binary from 2.9.8 to 2.9.9

Changelog

Sourced from psycopg2-binary's changelog.

Current release

What's new in psycopg 2.9.9 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Add support for Python 3.12.
  • Drop support for Python 3.6.

What's new in psycopg 2.9.8 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Wheel package bundled with PostgreSQL 16 libpq in order to add support for recent features, such as sslcertmode.

What's new in psycopg 2.9.7 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Fix propagation of exceptions raised during module initialization (:ticket:[#1598](https://github.com/psycopg/psycopg2/issues/1598)).
  • Fix building when pg_config returns an empty string (:ticket:[#1599](https://github.com/psycopg/psycopg2/issues/1599)).
  • Wheel package bundled with OpenSSL 1.1.1v.

What's new in psycopg 2.9.6 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Package manylinux 2014 for aarch64 and ppc64le platforms, in order to include libpq 15 in the binary package (:ticket:[#1396](https://github.com/psycopg/psycopg2/issues/1396)).
  • Wheel package bundled with OpenSSL 1.1.1t.

What's new in psycopg 2.9.5 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Add support for Python 3.11.
  • Add support for rowcount in MERGE statements in binary packages (:ticket:[#1497](https://github.com/psycopg/psycopg2/issues/1497)).
  • Wheel package bundled with OpenSSL 1.1.1r and PostgreSQL 15 libpq.

What's new in psycopg 2.9.4 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Fix ~psycopg2.extras.register_composite(), ~psycopg2.extras.register_range() with customized :sql:search_path (:ticket:[#1487](https://github.com/psycopg/psycopg2/issues/1487)).
  • Handle correctly composite types with names or in schemas requiring escape.

... (truncated)

Commits
  • ad5bee7 chore: bump version number to 2.9.9
  • 37d1de1 chore: add support for Python 3.12
  • abf2723 chore: drop support for Python 3.6
  • 2da65a7 chore: drop leftover Python 2.7 import aliases from setup.py
  • 3fa60fd chore: bump doc requirement complained by dependabot
  • 1c1484e ci: better interaction with scaleway build server
  • c81cec6 chore: bump to next dev release
  • 7fe8cb7 chore: bump docs requirements dependabot complains about
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-dependencies group in /api with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [urllib3](https://github.com/urllib3/urllib3) | `1.26.17` | `2.0.6` |
| [annotated-types](https://github.com/annotated-types/annotated-types) | `0.5.0` | `0.6.0` |
| [blinker](https://github.com/pallets-eco/blinker) | `1.6.2` | `1.6.3` |
| [boto3](https://github.com/boto/boto3) | `1.28.57` | `1.28.62` |
| [botocore](https://github.com/boto/botocore) | `1.31.57` | `1.31.62` |
| [greenlet](https://github.com/python-greenlet/greenlet) | `2.0.2` | `3.0.0` |
| [psycopg2-binary](https://github.com/psycopg/psycopg2) | `2.9.8` | `2.9.9` |


Updates `urllib3` from 1.26.17 to 2.0.6
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@1.26.17...2.0.6)

Updates `annotated-types` from 0.5.0 to 0.6.0
- [Release notes](https://github.com/annotated-types/annotated-types/releases)
- [Commits](annotated-types/annotated-types@v0.5.0...v0.6.0)

Updates `blinker` from 1.6.2 to 1.6.3
- [Release notes](https://github.com/pallets-eco/blinker/releases)
- [Changelog](https://github.com/pallets-eco/blinker/blob/main/CHANGES.rst)
- [Commits](pallets-eco/blinker@1.6.2...1.6.3)

Updates `boto3` from 1.28.57 to 1.28.62
- [Release notes](https://github.com/boto/boto3/releases)
- [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst)
- [Commits](boto/boto3@1.28.57...1.28.62)

Updates `botocore` from 1.31.57 to 1.31.62
- [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst)
- [Commits](boto/botocore@1.31.57...1.31.62)

Updates `greenlet` from 2.0.2 to 3.0.0
- [Changelog](https://github.com/python-greenlet/greenlet/blob/master/CHANGES.rst)
- [Commits](python-greenlet/greenlet@2.0.2...3.0.0)

Updates `psycopg2-binary` from 2.9.8 to 2.9.9
- [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS)
- [Commits](psycopg/psycopg2@2.9.8...2.9.9)

---
updated-dependencies:
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: annotated-types
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: blinker
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: greenlet
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: psycopg2-binary
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 9, 2023
@kdeal kdeal merged commit 23f8f95 into master Oct 9, 2023
3 checks passed
@kdeal kdeal deleted the dependabot/pip/api/all-dependencies-8e08bc9c4c branch October 9, 2023 18:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant